home *** CD-ROM | disk | FTP | other *** search
/ LG Super CD / LG Super CD.iso / 9900drivers / win2k / lgusbbus.inf < prev    next >
Encoding:
Windows Setup INFormation  |  2005-06-15  |  5.7 KB  |  139 lines

  1.  
  2. ;*****************************************************************************
  3. ; Name:  lgusbbus.inf (_MOON_)
  4. ;*****************************************************************************
  5.  
  6. [version]
  7. signature="$CHICAGO$"
  8. Class=USB
  9. ClassGuid={36FC9E60-C465-11CF-8056-444553540000}
  10. Provider=%Provider%
  11. CatalogFile = lgdriver.cat
  12. DriverVer=05/26/2005,4.6.0.0
  13.  
  14. [ControlFlags]
  15. ExcludeFromSelect = *
  16.  
  17. ;-----------------------------------------------------------------------------
  18. ; Specify target paths...
  19. ;-----------------------------------------------------------------------------
  20. [DestinationDirs]
  21. DefaultDestDir              = 11                ; LDID_SYS
  22. LGSIWdm.W95.CopyFiles       = 11                ; LDID_SYS
  23. LGSIWdm.NT.CopyFiles        = 12                ; system32\drivers
  24. PropPages.CopyFiles         = 11                ; system
  25.  
  26. ;-----------------------------------------------------------------------------
  27. ; Specify the install disks.  A bit unwieldy during development.
  28. ;-----------------------------------------------------------------------------
  29. [SourceDisksNames]
  30. ; diskid = description[, [tagfile] [, <unused>, subdir]]
  31. 1=%DiskString%,"lgusbbus.sys",,
  32.  
  33. [SourceDisksFiles]
  34. ; filename = diskid[, [subdir] [, size]]
  35. lgusbbus.sys = 1
  36.  
  37. ;-----------------------------------------------------------------------------
  38. ; Table of Contents:  manufacturer, then devices.
  39. ;-----------------------------------------------------------------------------
  40. [Manufacturer]
  41. %LGSI%=LGSI
  42.  
  43. ;-----------------------------------------------------------------------------
  44. ; The devices
  45. ;-----------------------------------------------------------------------------
  46. [LGSI]
  47. %LGSI.CdcBus.Desc% = LGSIWdm.Install, USB\VID_1004&PID_6000
  48.  
  49. ;-----------------------------------------------------------------------------
  50. ; How to install them:  On W9x, the [section] name is used directly.
  51. ; On NT, the system first tries [section.NT], then [section].
  52. ;-----------------------------------------------------------------------------
  53.  
  54. ;-----------------------------------------------------------------------------
  55. ; Diagnostics Files CopyFiles List Section
  56. ;-----------------------------------------------------------------------------
  57. [LGSI.CopyFiles]
  58.  
  59. ;-----------------------------------------------------------------------------
  60. ; XXX when we have a property page DLL, add it to the following section.
  61. ;-----------------------------------------------------------------------------
  62. [PropPages.CopyFiles]
  63.  
  64. ;-----------------------------------------------------------------------------
  65. ;       How to install the WDM driver on W95/W98
  66. ;-----------------------------------------------------------------------------
  67. [LGSIWdm.Install]
  68. DriverVer=05/26/2005,4.6.0.0
  69. CopyFiles=LGSIWdm.W95.CopyFiles, LGSI.CopyFiles, PropPages.CopyFiles
  70. AddReg=LGSIWdm.AddReg, LGSIWdm.W95.AddReg
  71.  
  72. ;-----------------------------------------------------------------------------
  73. ;       How to install the WDM driver on NT
  74. ;-----------------------------------------------------------------------------
  75. [LGSIWdm.Install.NT]
  76. DriverVer = 05/26/2005,4.6.0.0
  77. CopyFiles = LGSIWdm.NT.CopyFiles
  78. AddReg    = LGSIWdm.AddReg, LGSIWdm.NT.AddReg
  79.  
  80. ;-----------------------------------------------------------------------------
  81. ;       How to start the WDM driver on NT
  82. ;-----------------------------------------------------------------------------
  83. [LGSIWdm.Install.NT.Services]
  84. AddService = usbbus, 2, LGSIWdm.AddService
  85.  
  86. [LGSIWdm.AddService]
  87. DisplayName             = %LGSI.Service.Desc%
  88. ServiceType             = 1     ; SERVICE_KERNEL_DRIVER
  89. StartType               = 3     ; SERVICE_DEMAND_START
  90. ErrorControl            = 1     ; SERVICE_ERROR_NORMAL
  91. ServiceBinary           = %12%\lgusbbus.sys
  92. LoadOrderGroup          = Base
  93.  
  94. ;-----------------------------------------------------------------------------
  95. ;       WDM registry entries (all platforms)
  96. ;-----------------------------------------------------------------------------
  97. [LGSIWdm.AddReg]
  98.  
  99. ;-----------------------------------------------------------------------------
  100. ;       WDM registry entries (W95/98) (including how to start the driver)
  101. ;-----------------------------------------------------------------------------
  102. [LGSIWdm.W95.AddReg]
  103. HKR,,DevLoader,,*ntkern
  104. HKR,,NTMPDriver,,lgbus9x.sys
  105.  
  106. ;-----------------------------------------------------------------------------
  107. ;       WDM registry entries (NT only)
  108. ;-----------------------------------------------------------------------------
  109. [LGSIWdm.NT.AddReg]
  110.  
  111. ;-----------------------------------------------------------------------------
  112. ;       The WDM copy list for Win95 -- different because things go in
  113. ;       different places.  Also, we probably need to rename drivers 
  114. ;       during the install.
  115. ;-----------------------------------------------------------------------------
  116. [LGSIWdm.W95.CopyFiles]
  117. lgbus9x.sys
  118.  
  119. ;-----------------------------------------------------------------------------
  120. ;       The WDM copy list for NT -- different because things go in
  121. ;       different places.
  122. ;-----------------------------------------------------------------------------
  123. [LGSIWdm.NT.CopyFiles]
  124. lgusbbus.sys
  125.  
  126. ;****************************************************************************
  127. ; Localizable Strings
  128. ;****************************************************************************
  129. [strings]
  130. Provider="LG Electronics Inc."
  131. LGSI="LG Electronics Inc."
  132.  
  133. DiskString="LGE CDMA USB Composite Device Installation disk"
  134. LGSI.CdcBus.Desc="LGE CDMA Composite USB Device"
  135. LGSI.Service.Desc="LGE CDMA Composite USB Device"
  136. CustomerDataPath="LGE USB CDMA Modem"
  137. DriverSet="LGE USB CDMA Modem Software"
  138.  
  139.